@charset "UTF-8";
/* CSS Document */

/* left-box */
.left-box {
	width:730px;
	height:auto;
	float:left;
	margin-bottom:80px;
}

/*business-info*/
.business-info {
	width:730px;
	height:850px;
	margin-top:30px;
}

.business-info h2 {
	font-size:18px;
	font-weight:normal;
	color:#444444;
	text-align:center;
}

/* c-box */
.c-box {
	width:200px;
	height:200px;
	float:left;
	background:#F6F6F6;
	border:solid 1px #E1E1E1;
}

.c-top {
	margin-top:50px;
}

.c-top2 {
	margin-top:50px;
}

.c-left {
	margin-right:50px;
}

.c-center {
	margin-right:50px;
}

.c-box img {
	width:200px;
	height:150px;
}

.c-box p {
	font-size:13px;
	color:#444444;
}

.detail {
	width:200px;
	height:50px;
	background:#999999;
	margin-top:-16px;
}

.detail p {
	text-align:center;
	color:#FFFFFF;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.detail a {
	color:#FFFFFF;
	display:block;
	width:200px;
	height:50px;;
}

.blue :hover {
	width:200px;
	height:50px;
	background:#00CCFF;
}

.yellow :hover {
	width:200px;
	height:50px;
	background:#FFEA00;
	margin:0;
}

.yellow a:hover {
	color:#444444;
}

.orange :hover {
	width:200px;
	height:50px;
	background:#FF6600;
}

.green :hover {
	width:200px;
	height:50px;
	background:#0bda51;
}

.detail a:hover {
	text-decoration:none;
}





/* bottom-box */
.bottom-box {
	width:705px;
	height:200px;
	float:left;
	background:#F6F6F6;
	border:solid 1px #E1E1E1;
}

.bottom-box img {
	width:705px;
	height:150px;
}

.bottom-box p {
	font-size:13px;
	color:#444444;
}

.detail-b {
	width:705px;
	height:50px;
	background:#999999;
	margin-top:-16px;
}

.detail-b p {
	text-align:center;
	color:#FFFFFF;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.detail-b a {
	color:#FFFFFF;
	display:block;
	width:705px;
	height:50px;;
}

.detail-b :hover {
	width:705px;
	height:50px;
	background:#000000;
}













/* figure */
.left-f figure {
	position: relative;
	overflow: hidden;
	width: 200px;
	margin-top:0;
	margin-left:0;
}
.left-f figcaption {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 200px;
	height: 150px;
	background: rgba(0,0,0,.7);
	-webkit-transition: .3s;
	transition: .3s;
	opacity: 0;
}
.left-f figcaption h3,
.left-f figcaption p {
	position: absolute;
	left: -100%;
	width: 170px;
	-webkit-transition: .3s;
	transition: .3s;
}
.left-f figcaption h3 {
	top: 10px;
	font-size:17px;
}
.left-f figcaption p {
	top: 40px;
}
.left-f figure:hover figcaption {
	opacity: 1;
}
.left-f figure:hover figcaption h3,
.left-f figure:hover figcaption p {
	left: 10px;
	color:#0CF;
}

.left-f figure figcaption h3 a,
.left-f figure figcaption p a {
	color:#0CF;
	display:block;
}


.left-f figure:hover figcaption h3 {
	-webkit-transition-delay: .1s;
	transition-delay: .1s;
}
.left-f figure:hover figcaption p {
	-webkit-transition-delay: .5s;
	transition-delay: .5s;
}

/*figure2*/
.rotation figure {
	position: relative;
	overflow: hidden;
	width: 200px;
	margin-top:0;
	margin-left:0;
}
.rotation figcaption {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 200px;
	height: 150px;
	background: rgba(0,0,0,.7);
	-webkit-transform: rotate(90deg) scale(0);
	transform: rotate(90deg) scale(0);
	-webkit-transition: .3s;
	transition: .3s;
	opacity: 0;
}
.rotation figure:hover figcaption {
	-webkit-transform: rotate(360deg) scale(1);
	transform: rotate(360deg) scale(1);
	opacity: 1;
}

.rotation figcaption h3 {
	margin:10px 10px 5px 10px;
	color:#FFEA00;
	font-size:17px;
}
.rotation figcaption p {
	margin:5px 10px 10px 10px;
	color:#FFEA00;
}

.rotation figure figcaption h3 a,
.rotation figure figcaption p a {
	color:#FFEA00;
	display:block;
}

/* figure3 */
.turn figure {
	position: relative;
	overflow: hidden;
	width: 200px;
	margin-top:0;
	margin-left:0;
}
.turn figcaption {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 200px;
	height: 150px;
	background: rgba(0,0,0,.7);
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	-webkit-transition: .5s;
	transition: .5s;
	opacity: 0;
}

.turn figure:hover figcaption {
	-webkit-transform: rotateX(0);
	transform: rotateX(0);
	opacity: 1;
}

.turn figcaption h3 {
	margin:10px 10px;
	color:#FF6600;
	font-size:17px;
}
.turn figcaption p {
	margin:8px 10px;
	color:#FF6600;
	font-weight:600;
}

.turn figure figcaption h3 a,
.turn figure figcaption p a {
	color:#FF6600;
	display:block;
}

/* figure4 */
.turn2 figure {
	position: relative;
	overflow: hidden;
	width: 200px;
	margin-top:0;
	margin-left:0;
}
.turn2 figcaption {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 200px;
	height: 150px;
	background: rgba(0,0,0,.7);
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	-webkit-transition: .5s;
	transition: .5s;
	opacity: 0;
}

.turn2 figure:hover figcaption {
	-webkit-transform: rotateX(0);
	transform: rotateX(0);
	opacity: 1;
}

.turn2 figcaption h3 {
	margin:10px 10px;
	color:#0bda51;
	font-size:17px;
}
.turn2 figcaption p {
	margin:8px 10px;
	color:#0bda51;
	font-weight:600;
}

.turn2 figure figcaption h3 a,
.turn2 figure figcaption p a {
	color:#0bda51;
	display:block;
}





/* figure4 */
.bottom-box figure {
	position: relative;
	overflow: hidden;
	width: 705px;
	margin-top:0;
	margin-left:0;
}
.bottom-box figcaption {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 705px;
	height: 150px;
	background: rgba(0,0,0,.7);
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	-webkit-transition: .5s;
	transition: .5s;
	opacity: 0;
}
.bottom-box figure:hover figcaption {
	-webkit-transform: rotateX(0);
	transform: rotateX(0);
	opacity: 1;
}

.bottom-box figcaption h3 {
	text-align:center;
	margin:10px 10px;
	color:#FFFFFF;
	font-size:17px;
}
.bottom-box figcaption p {
	margin:8px 10px;
	color:#FFFFFF;
	font-weight:600;
}

.bottom-box figure figcaption h3 a,
.bottom-box figure figcaption p a {
	color:#FFFFFF;
	display:block;
}


/*===========ad-agency============*/
.ad-agency {
	width:660px;
	height:auto;
	margin:30px 0;
	border-bottom:solid 1px #E2E2E2;
}

.ad-agency h1 {
	font-size:23px;
	font-weight:normal;
	color:#444444;
}

.ad-agency h3 {
	color:#444444;
	margin:20px 0;
}

.ad-agency img {
	width:660px;
	height:133px;
}

.ad-ai {
	width:660px;
	height:auto;
	margin:30px 0 50px 0;
}

.ad-ai p {
	font-size:13px;
	color:#444444;
	margin-top:10px;
}

.ad-box {
	width:660px;
	height:280px;
	margin:30px 0;
}

.ad-b {
	width:218px;
	height:265px;
	margin-left:-1px;
	border:solid 1px #000000;
	float:left;
}

.ad-bt {
	width:218px;
	height:50px;
	background:#F90;
	border-bottom:solid 1px #000000;
}

.ad-bt h4 {
	color:#FFFFFF;
	font-size:15px;
	line-height:50px;
	text-align:center;
}


.ad-bb p {
	font-size:13px;
	color:#444444;
	margin:10px;
}

h3.adb {
	margin:30px 0 0 0;
}

img.adk {
	width:660px;
	height:199px;
}

.adk-i {
	width:660px;
	height:230px;
}

.adk-i p {
	font-size:13px;
	color:#444444;
	margin:10px;
}

.adk-i h4 {
	color:#444444;
	margin:25px 10px 10px 10px;
}

/*===========sales-agency============*/
.sales-agency {
	width:660px;
	height:auto;
	margin:30px 0;
	border-bottom:solid 1px #E2E2E2;
}

.sales-agency h1 {
	font-size:23px;
	font-weight:normal;
	color:#444444;
}

.sales-agency h3 {
	color:#444444;
	margin:20px 0;
}

.sales-i {
	width:270px;
	height:200px;
	float:left;
	margin-bottom:30px;
}

.sales-i img {
	width:270px;
	height:200px;
}

.sales-text {
	width:360px;
	height:200px;
	margin-left:30px;
	float:left;
	margin-bottom:30px;
}

.sales-text p {
	font-size:13px;
	color:#444444;
	margin:10px;
}

/* ch */
.ch {
	width:660px;
	height:350px;
	clear:both;
}
.ch-i {
	width:270px;
	height:200px;
	float:left;
	margin-bottom:30px;
}

.ch-i img {
	width:270px;
	height:200px;
}

.ch-t {
	width:360px;
	height:200px;
	margin-left:30px;
	float:left;
	margin-bottom:30px;
}

.ch-t p {
	font-size:13px;
	color:#444444;
	margin:10px 0 10px 0;
}

/* sss */
.sss {
	width:660px;
	height:300px;
}

.sss h3 {
	color:#444444;
	margin:20px 0;
}

/*===========web-system============*/
.web {
	width:660px;
	height:auto;
	margin:30px 0 50px 0;
}

.web h1 {
	font-size:23px;
	font-weight:normal;
	color:#444444;
}

.web-s {
	width:660px;
	height:320px;
	border-bottom:solid 1px #E2E2E2;
}

.web-i {
	width:270px;
	height:250px;
	float:left;
	margin-bottom:30px;
}

.web-i img {
	width:270px;
	height:200px;
	margin-top:40px;
}

.web h3 {
	color:#444444;
}

.web-text {
	width:360px;
	height:250px;
	margin-left:30px;
	float:left;
	margin-bottom:30px;
}

.web-text p {
	font-size:13px;
	color:#444444;
	margin:10px 0;
}

/* web-m */
.web-m {
	width:660px;
	height:auto;
	margin-bottom:30px;
	border-bottom:solid 1px #E2E2E2;
}

.web-m h3 {
	color:#444444;
}

.web-m p {
	font-size:13px;
	color:#444444;
	margin:10px 0;
}

p.webb {
	margin-bottom:30px;
}

/* right-box*/
.right-box {
	width:210px;
	height:480px;
	float:left;
	margin-top:50px;
	margin-left:20px;
	padding-top:30px;
}

.right-box img {
	border:solid 1px #CCCCCC;
}


img.banner {
	margin-top:-1px;
	margin:-1px;
	border:solid 1px F5F5F5;
}
