nav.NavMenu {
	position: fixed;	/*表示位置を固定*/
	z-index: 100;		/*重ね順を変更*/
	top: 0;		/*表示位置を指定*/
	left: 0;	/*表示位置を指定*/
	background: rgba(255,255,255,0.9);/*背景を白にする*/
	color: #000;	/*文字色を黒にする*/
	text-align: center;		/*テキストを中央揃え*/
	width: 100%;	/*全幅表示*/
	transform: translateY(-100%);	/*ナビを上に隠す*/
	transition: all 0.6s;	/*アニメーションの時間を指定*/
}
nav.NavMenu ul {
	/*background: #ccc;*/	/*背景をグレーにする*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
nav.NavMenu ul li {
	/*font-size: 1.1em;*/
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px dotted #333;
}
nav.NavMenu ul li:first-child {
	border-top: 1px dotted #333;	
}
nav.NavMenu ul li:last-child {
	padding-bottom: 0;
	/*border-bottom: none;*/	/*最後のメニュー項目のみ下線を消す*/
}
nav.NavMenu ul li a {
	display: block;		/*クリックできる領域を広げる*/
	color: #333333;
	padding: 1em 0;
}
nav.NavMenu.active {
	/*transform: translateY(0%);*/
	transform: translateY(54px);		/*ナビを表示する*/
}
.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 10px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	z-index: 110;
}
.Toggle span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 3px #000;
	-webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
	transition: .35s ease-in-out;			/*変化の速度を指定*/
	left: 6px;
}
@media screen and (min-width: 991px) {
.Toggle {
	display: none;
}
}
.Toggle span:nth-child(1) {
	top: 9px;
}
.Toggle span:nth-child(2) {
	top: 18px;
}
.Toggle span:nth-child(3) {
	top: 27px;
}
/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),  .Toggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
#fade {
	display: none;
}

/* --------------------------------追加 */
.sp-nav .header-logo-wrap {
	display: block;
	position: fixed;
	background-color: rgba(255, 255, 255, 0.9);
	width: 100%;
	height: 54px;
	z-index: 90;
}
.sp-nav .header-logo {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	left: 13px;
	top: 16px;
	cursor: pointer;
	z-index: 99;
}
.sp-nav .header-logo img{
	height: auto;
	width: 210px;
}
.pc-nav {
	display: none;
}
@media screen and (min-width: 991px) {
.sp-nav .header-logo-wrap {
	display: none;
}
.pc-nav {
	display: block;
	position: fixed;
	z-index: 100;
	width: 100%;
	background-color: rgba(255,255,255,0.8);
	transition: all 0.4s;
}
.is-animation {
  transform: translateY(-57px);
}
.pc-nav-logocon {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1170px;
	margin: 0 auto 10px;
	padding: 0 20px;
}
.pc-nav .header-logo {
	/*margin-left: 20px;*/
}
.pc-nav .header-contact {
	display: flex;
	/*margin-right: 20px;*/
}
.pc-nav .header-contact a {
	display: inline-block;
	padding: 10px 15px;
	color: #ffffff;
}
.pc-nav .header-contact a.mail{
	background-color: #284999;
}
.pc-nav .header-contact a.tel{
	background-color: #2a265f;
	font-family: 'Oswald', sans-serif;
}
.pc-nav .header-logo img {
	/*height: 43px;*/
	width: auto;
	margin-top: 2px;
}
.pc-nav .header-contact img {
	width: auto;
}
.pc-nav ul.pcmenu {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 20px;
}
.pc-nav ul.pcmenu li {
	font-weight: 700;
	line-height: 1.5;
	list-style-type: none;
	padding: 0;
	width: 16.666%;
	width: calc(100% / (6 - 0.1px));
	border-bottom: none;
	transition: .4s;
	position: relative;
	border-left: 1px dotted #91B5FE;
}
.pc-nav ul.pcmenu li:last-child {
	border-right: 1px dotted #91B5FE;
}
.pc-nav ul.pcmenu li a {
	display: block;	
	color: #333333;
	line-height: 1.6;
	padding: 5px 20px;
	text-align: center;
	transition: .2s;
}
.pc-nav ul.pcmenu li a span.en {
	display: block;	
	color: #284999;
	text-align: center;
	font-size: 1.2rem;
	font-family: 'Oswald', sans-serif;
}
.pc-nav ul.pcmenu li a:hover {
	color: #9cb8e5;
}
}


