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


.punav {
  	width: 940px;
	margin: 0px auto;
	padding: 0px;
 	display: flex;
}

.punav li {
  	position: relative;
	width: 235px;
	height: 85px;
	font-size: 18px;
	font-weight: normal;
	list-style-type: none;
	float: left;
	clear: right;
	text-align: center;
	padding: 0px;
	margin: 0px;
	color:#000;
}

.punav li a {
	display: block;
	width: 235px;
	height: 85px;
	color: #000;
	text-decoration: none;
	transition: 0.5s;
	box-sizing: border-box;
	display: table-cell;
	vertical-align: middle;
}




.punav > li:hover > a {/*layer-1　★メイン*/
	padding: 0px;
	margin: 0px;
	background-image: url(../images/nav_bg.png);
	background-size: 235px 85px;
	background-repeat: no-repeat;
	border-bottom: 7px solid #4E83C4; /*青太線*/
}


.now { /*現在のページ表示用*/
	padding: 0px;
	margin: 0px;
	background-image: url(../images/nav_bg.png);
	background-size: 235px 85px;
	background-repeat: no-repeat;
}







/*……………………………………………*/
　　▽ポップアップ個所▽
/*……………………………………………*/

.punav li ul {/*layer-2　☆サブ*/
 	position: absolute;
	margin: 0px;
	padding: 0px;

}

.punav li ul li {/*layer-2　☆サブ*/
	overflow: hidden;
	height: 0px; /*★触らない★*/
 	transition: 0.2s;
	text-align: left;
	font-size: 16px;
	line-height: 23px;
	margin: 0px 0px 0px -40px;
}

.punav li ul li a {/*layer-2　☆リンク通常時*/
	color: #000; /*黒*/
	padding: 10px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	height: auto;
	background-color: #FFF;
}

.punav > li li:hover > a {/*layer-2*/
	color: #4E83C4; /*青*/
	font-weight: normal;
	background-color: #FFFDED;
}

.punav > li li:visited > a {/*layer-2*/
	color: #000; /*黒*/
	background-color: #FFFDED;
}



.punav li:hover > ul > li {/*layer-2　☆サブ　ホバー*/
  	overflow: visible;
	height: auto;
}
