@charset "UTF-8";

nav ul {
	overflow: hidden; /* 回り込み(float)の解除 + 内部要素の高さを自動補正 */
	zoom: 1; /* for IE6 */
	padding-left: 55px;
}
nav li {
	float: left;
	margin: 0px;
	padding: 0;
}
nav a {
	height: 54px;
	display: block;
	outline:none;
}

/*ContctUs吹き出し*/
#contctus {
	position: relative;
	width: 191px;
	height: 25px;
	z-index: auto;
}
#contctus img {
	width: 100%;
	height: 100%;
}
#contctus .box {
	position:absolute;
	width: 150px; /* 吹き出しの幅 */
	height: 30px; /* 吹き出しの高さ */
	top: -36px; /* 吹き出しと三角形の高さをプラスした値 */
	left: 10px;
	border-radius: 6px 6px 6px 6px;
	background-color: #FFDD00;
	display: none;
}
#contctus .box:after { /* 三角形を作成 */
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	top: 30px; /* 吹き出しの高さと同じ値 */
	left: 32px;
	border: 5px solid transparent;
	border-top: 8px solid #FFDD00;
}
#contctus .text {
	font-size: 13px;
	position: absolute;
	top: 5px;
	left: 20px;
	color: #000;
}
#contctus:hover .box {
	z-index: 2;
	display: block;
}