
/*ハンバーガーメニューに関する記述*/

.headerTitle{
	display: none;
}

#menu .menuopen{
	display: none;
}
#menu .menuclose{
	display: none;
}

#menu ul{
	display: none;
}

#menu .menuText{
	display: none;
}


/*タイトル部分*/


.title{
	margin-top: 8px;
	padding: 16px;
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
}

.title a{
	text-decoration: none;
}

.title a:link {
	color: black;
}
.title a:visited {
	color: black;
}

.subtitle{
	text-align: center;
	font-size: 14px;
	margin: 8px 0 16px 0;
	line-height: 1.5;
}

/*メニュー部分*/

.nav{
	text-align: center;
	margin-bottom: 12px;
}

.nav ul li{
	display: inline-block;
	padding: 8px 32px;
	font-size: 14px;
}

.nav ul li a{
	text-decoration: none;
}

.nav ul li a:link {
	color: black;
}
.nav ul li a:visited {
	color: black;
}

.nav ul li a:hover {
	color: blue;
	opacity: 0.5;
	border-bottom: solid 1px blue;
}

.active{
	border-bottom: solid 1px blue;
}

/*header固定*/
header{
	height: 165.8px;
	width: 100%;
    
}

.fixed-box{
	margin: 0 auto;
	width: 100%;
	position: fixed;
	z-index: 1;
	background-color: #fff;
}



