@charset "utf-8";

#menuFix {
	background-color: #4D72CB;
	width: 100%;
	padding-top: 14px;
	padding-bottom: 14px;
}

/*=== Global Navi ===*/
nav.globalMenuSp {
	background-color: #4D72CB;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 4px;
}

nav.globalMenuSp ul {
	overflow: hidden;
	width: 100%;
}

nav.globalMenuSp ul li {
	text-align: center;
	float: left;
	font-size: 100%;
	line-height: 120%;
	width: 8em;
	margin-right: 10px;
}

nav.globalMenuSp ul li a,
nav.globalMenuSp ul li a:visited {
	text-decoration: none;
	color: #FFF;
	display: block;
	padding-top: 8px;
	padding-bottom: 6px;
	padding-right: 0ex;
	padding-left: 0ex;
	transition:all 0.4s ease;
}

nav.globalMenuSp ul li.pcNon,
nav.globalMenuSp ul li.pcNonlogo,
nav.globalMenuSp ul li.pcNonThis {
	display: none;
}

nav.globalMenuSp ul li a:hover {
	text-decoration: none;
	color: #FFF;
	background-color: #8CA5DD;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}

nav.globalMenuSp ul li.this {
	text-decoration: none;
	color: #4D72CB;
	padding-top: 8px;
	padding-bottom: 6px;
	background-color: #FFF;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	text-align: center;
}

/* トグル */
.navToggle {
    display: none;
}


@media screen and (max-width: 992px){ /*768*/


#menuFix {
	background-color: #E0E0E0;
	width: 100%;
	border-top-width: 0px;
	border-top-style: none;
	padding-top: 0px;
	padding-bottom: 0px;
}

/*=== Global Navi ===*/
nav.globalMenuSp {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	color: #000;
	text-align: center;
	transform: translateY(-100%);
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	background-color: #E0E0E0;
}

nav.globalMenuSp ul {
	border-left-style: none;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	overflow: auto;
}

nav.globalMenuSp ul li {
	text-align: center;
	float: none;
	width: 100%;
	font-size: 100%;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	margin-right: 0px;
	margin-left: 0px;
	line-height: 120%;
}

nav.globalMenuSp ul li.pcNon,
nav.globalMenuSp ul li.pcNonThis {
	display: block;
}

nav.globalMenuSp ul li.pcNonlogo {
	width: 80%;
	padding-top: 8px;
	padding-left: 10px;
	display: block;
}

nav.globalMenuSp ul li a,
nav.globalMenuSp ul li a:visited {
	text-decoration: none;
	color: #FFF;
	display: block;
	padding-top: 20px;
	padding-bottom: 18px;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-width: 1px;
	border-bottom-color: #A3B7E4;
	background-color: #6F8DD5;
}

nav.globalMenuSp ul li.pcNon a,
nav.globalMenuSp ul li.pcNon a:visited {
	text-decoration: none;
	color: #FFF;
	display: block;
	padding-top: 10px;
	padding-bottom: 8px;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-width: 1px;
	border-bottom-color: #A3B7E4;
	background-color: #6F8DD5;
	font-size: 74%;
}

nav.globalMenuSp ul li a:hover,
nav.globalMenuSp ul li.pcNon  a:hover {
	background-color: #A3B7E4;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #C6D1EE;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
}

nav.globalMenuSp ul li.this {
	text-decoration: none;
	color: #FFF;
	display: block;
	padding-top: 20px;
	padding-bottom: 18px;
	border-radius: 0px;
	padding-right: 0ex;
	padding-left: 0ex;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	background-color: #3F67C7;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-width: 1px;
	border-bottom-color: #A3B7E4;
}

nav.globalMenuSp ul li.pcNonThis {
	text-decoration: none;
	color: #FFF;
	display: block;
	padding-top: 12px;
	padding-bottom: 10px;
	border-radius: 0px;
	padding-right: 0ex;
	padding-left: 0ex;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	background-color: #3257AD;
	clear: both;
	font-size: 74%;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-bottom-color: #A3B7E4;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}


/* トグル */
.navToggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 46px;
	height: 55px;
	cursor: pointer;
	z-index: 3;
	text-align: center;
	background-color: #6183D1;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border: 2px solid #FFF;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
 
.navToggle span:nth-child(1) {
    top: 9px;
}
 
.navToggle span:nth-child(2) {
    top: 18px;
}
 
.navToggle span:nth-child(3) {
    top: 27px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}



}
