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

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ ヘッダー */
header{
	z-index: 1000;
	top: 0px;
	width: 100%;
	height: 50px;
	text-align: center;
	position: fixed;
	transition: 1.0s ;
	background-color: rgba(0, 0, 0, 0.2);
}

.header-nav{
	text-align: center;
}

.header-nav ul{
	list-style: none;
	overflow: hidden;
	display: table;
	table-layout: fixed;
	width: 100%;
	float: right;
	padding-top: 16px;
}

.header-nav ul li{
    font-size: 13px;
	text-align: center;
	display: table-cell;
	/* 白線 border-left: 1px solid #ccc; */
	/* 白線 border-right: 1px solid #ccc; */
	line-height: 0px;
	vertical-align: middle;
}

.header-nav a{
	display: block;
	padding: 8px 0 8px 0;
	color: #fff;
}

/* 白線用 
.header-nav ul li+li{
	border-left: none;
}
 */