@charset "utf-8";

/* ========================================================================================================================/
	
	Document : style.css

/======================================================================================================================== */

/* ------------------------------------------------------------------------------------------------------------------------/
	Subvisual
/------------------------------------------------------------------------------------------------------------------------ */

#subvisual {
	background-image: url(../image/corporation/visual.jpg);
	background-position: -420px 0px;
}

/* ------------------------------------------------------------------------------------------------------------------------/
	overview
/------------------------------------------------------------------------------------------------------------------------ */

#overview {
	width: 640px;
	margin: 50px auto;
	text-align: left;
}

#overview table {
	width: 600px;
	margin: 30px auto;
	border-collapse: collapse;
}

#overview table th,
#overview table td {
	padding: 0.5em 0.75em;
	border: 1px solid #ccc;
	vertical-align: top;
}

#overview table th {
	width: 4em;
	background-color: #efefef;
}

#overview table td {
	padding: 0.5em;
	text-align: left;
} 

#overview table td h4 {
	font-size: 32px;
	border-bottom: none;
	padding-bottom: 0;
	color: #E45F8D;
	line-height: 1.6;
}

#overview table td dl {
	margin-bottom: 1em;
}

#overview table td dt {
	float: left;
	margin-right: 1em;
	font-weight: bold;
}

#overview table td .other01 dt,
#overview table td .other02 dt {
	float: none;
	margin-right: 1em;
	font-weight: bold;
}

#overview table td .other02 {
	margin-bottom: 0;
}

#overview table td .other01 dd {
	margin-bottom: 1em;
}

#overview #gmap01 {
    width:640px;
    height:500px;
    margin:30px auto 50px;
}


/* ------------------------------------------------------------------------------------------------------------------------/
	vision
/------------------------------------------------------------------------------------------------------------------------ */

#vision {
	width: 640px;
	margin: 50px auto;
	text-align: left;
}

#vision .visiontxt {
	width: 600px;
	text-align: center;
	font-size: 30px;
	line-height: 1.6;
	margin: 0 auto;
}

#vision ol {
	width: 600px;
	margin: 0 auto;
	counter-reset:number; /*数字をリセット*/
	list-style-type: none!important; /*数字を一旦消す*/
	padding-left:1em;
}

#vision ol li {
	position: relative;
	line-height: 2;
	padding: 0.5em 0.5em 0.5em 60px;
}

#vision ol li:before{
	/* 以下数字をつける */
	position: absolute;
	counter-increment: number;
	content: counter(number);
	/*以下数字のデザイン変える*/
	display:inline-block;
	background: #E45F8C;
	color: white;
	font-family: 'Avenir','Arial Black','Arial',sans-serif;
	font-weight:bold;
	border-radius: 50%;
	left: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align:center;
	/*以下 上下中央寄せのため*/
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}