.hamburger{
display: none;
}

.globalMenuSp{
display: none;
}


@media screen and (max-width: 600px) {

.out_main_nav_wrp{
display: none;
}

/*SP用Gメニュー*/
/*　ハンバーガーメニューボタン　*/
.hamburger {
display : block;
position: fixed;
z-index : 9999;
right : 20px;
top   : 10px;
width : 42px;
height: 42px;
cursor: pointer;
text-align: center;
}
.hamburger span {
display : block;
position: absolute;
width   : 25px;
height  : 1px ;
left    : 6px;
background : #fff;
-webkit-transition: 0.3s ease-in-out;
-moz-transition   : 0.3s ease-in-out;
transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
top: 10px;
}
.hamburger span:nth-child(2) {
top: 20px;
}
.hamburger span:nth-child(3) {
top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
top : 16px;
left: 6px;
background :#0a5e8c;
-webkit-transform: rotate(-45deg);
-moz-transform   : rotate(-45deg);
transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
top: 16px;
background :#0a5e8c;
-webkit-transform: rotate(45deg);
-moz-transform   : rotate(45deg);
transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
display: block;
position: fixed;
z-index : 9998;
top  : 0;
left : 0;
color: #0a5e8c;
background: #fff;
text-align: center;
width: 100%;
height: 100%;
transform: scale(0,0);
transition: all 0.6s;
}

nav.globalMenuSp ul {
margin: 0 auto;
padding: 0;
padding-top: 70px;
width: 100%;
height: 100%;
overflow: auto;
-webkit-overflow-scrolling: touch;
}

nav.globalMenuSp ul li {
list-style-type: none;
padding: 0;
width: 100%;
transition: .4s all;
}


nav.globalMenuSp ul li:last-child {
padding-bottom: 0;
margin-bottom: 70px;
}
nav.globalMenuSp ul li:hover{
background :#ddd;
}

nav.globalMenuSp ul li a {
display: block;
color: #0a5e8c;
padding: 1.2em 0;
padding-left: 40px;
text-decoration :none;
text-align: left;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
opacity: 100;
display: block;
transform: scale(1,1);
}
	
	.sp_header{
	display: block;
	padding: 20px 20px 10px;
	background-color: #002c4b;
}
	.sp_header img{
		width: 170px;
	}























}