.sns a{text-decoration: none;color:#fff;}
.sns a:hover{color:#149244;}

.green-line-m {
	color: #149244;
	display: flex;
	align-items: center;
}
.green-line-m:before, .green-line-m:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #149244;
	display: block;
}
.green-line-m:before {
	margin-right: .4em;
}
.green-line-m:after {
	margin-left: .4em;
}


/*-------------nav-toggle---------------------*/

#nav-toggle {display:block;}

.close-btn{padding: 10px;text-align:center;border: 1px solid #eee;font-size:20px;width:60px;margin-left: auto;}

/*-------------nav open---------------------*/
.open {
	overflow: hidden;
}
.open #overlay {
	display: block;
}
.open #sidebar  {
	-webkit-transform: translate3d(-60vw,0,0);
	transform: translate3d(-60vw,0,0);
}

@media screen and (max-width:599px){
.open #sidebar  {
	-webkit-transform: translate3d(-90vw,0,0);
	transform: translate3d(-90vw,0,0);
}
}




/*-------------navi---------------------*/

#sidebar {
	position: fixed;
	right: -60vw;
	top: 0;
	padding-top: 30px;
	padding-left:30px;
	padding-right:30px;
	width: 60vw;
	height: 100vh;
	color: #fff;
	background-color:rgba(0,0,0,0.9);
	border-left:1px solid #fff;
	-webkit-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	transform: translateZ(0);
}

@media screen and (max-width:599px){
#sidebar {
	position: fixed;
	right: -90vw;
	top: 0;
	padding-top: 30px;
	padding-left:30px;
	padding-right:30px;
	width: 90vw;
	height: 100vh;
	color: #fff;
	background-color:rgba(0,0,0,0.9);
	border-left:1px solid #fff;
	-webkit-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	transform: translateZ(0);
}
}

#global-nav ul {
	 list-style: none;
	 display:flex;
	 justify-content: center;
	 flex-wrap: wrap;
	 font-size:18px;
	 line-height:150%;
}



.global-nav-btn1{ 
width:33.3%;   
    padding-top:20px;
    padding-bottom:20px;
    text-align: center;
    color:fff;
    border-bottom:1px solid #cccccc;
}



.global-nav-btn2{ 
width:100%;   
    padding-top:20px;
    padding-bottom:20px;
    text-align: left;
    color:fff;
    border-bottom:1px dotted #666666;
}

.global-nav-btn3{ 
width:49%;   
    padding-top:20px;
    padding-bottom:20px;
    text-align: center;
    color:fff;
    border-bottom:1px solid #cccccc;
}



.global-nav-title{
padding:10px;
font-weight:Bold;
color:#149244;
}


#global-nav a {
	color: #fff;
	text-decoration:none;
	-moz-transition: color .3s linear;
	-webkit-transition: color .3s linear;
	transition: color .3s linear;
}

#global-nav a:hover {
	color: #149244;
	text-decoration:none;
}


/* z-index */
#overlay {
	z-index: 200;
}
#sidebar {
	z-index: 300;
}
#nav-toggle {
	z-index: 400;
}

#global-head {
	z-index: 100;
}



#overlay {
	display: none;
	position: fixed;
	background: rgba(0,0,0,.6);
	width: 100%;
	height:100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}