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


a,a img {
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
    transition: all  0.5s ease;
}

a img:hover {
	filter:alpha(opacity=50);
	-ms-filter: "alpha(opacity=50)";
    -moz-opacity: 0.5;
    opacity: 0.5;
}

/*----------------Basic CSS----------------*/

body {
	font-size: 16px;
	line-height: 1.8;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
	text-align: center;
	color: #252525;
	margin: 0;
	padding: 0;
}
/*IE6*/
* html body {
	font-size: 100%;
}
/*IE7*/
*:first-child+html body {
	font-size: 100%;
}
a:link {
	color: hsla(228,100%,28%,1.00);
}
a:visited {
	color: #546D9B;
}
a:hover, a:active {
	color: hsla(227,100%,50%,1.00);
	text-decoration: underline;
}

/*------------------------------------------------
                     header
------------------------------------------------*/

#head {
	background-color: hsla(217,100%,50%,0.90);
	height:66px;
	-webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.56);
-moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.56);
box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.56);
	text-align: left;
	width:100%;
	min-width:1000px;
}

#head h1 {
	float:left;
	max-width:400px;
	line-height:66px;
	margin: 0 20px;
}

#menu{
	float:right;
	width:560px;
	text-align: right;
	
}

#menu ul{
	display: -webkit-flex;
    display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	margin-right:20px;
	
}

#menu ul li{
	height:40px;
}

#menu ul li a {
	font-size: 94%;
	display: block;
	text-align: center;
	line-height: 40px;
	padding-top: 14px;
	color: hsla(0,0%,100%,1.00);
	border-bottom: 1px solid hsla(0,0%,100%,0.00);
}

#menu ul li a:hover {
	border-bottom: 1px solid hsla(0,0%,100%,1.00);
	text-decoration: none;
}


/*-----------------  page-top ボタン  -----------------*/
/*--------------------------------------------------*/

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 74%;
	z-index:200;
}
#page-top a {
	background-color: hsla(0,0%,39%,0.55);
	text-decoration: none;
	color: #fff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	margin: 0;
	padding: 0;
	text-align: center;
	display: block;
	border-radius: 30px;
}
#page-top a:hover {
    text-decoration: none;
    background-color: hsla(233,63%,18%,0.90);
}


p.center {
	text-align: center;
}

