/*********
*******************************************:
注意　このcssファイルのみPCファーストで記述されています。
*******************************************:
*********/

/*****************
ヘッダー・ナビ
*****************/
.inner {
	width: 1024px;
	margin: 0 auto;
}

/* header */
#top-head {
	font-size: 14px;
	top: -100px;
	position: absolute;
	width: 100%;
	margin: 100px auto 0;
	padding: 0px;
	line-height: 1;
	z-index: 999;
	overflow: hidden;/*右端の空白対策*/
}
#top-head a,
#top-head {
	text-decoration: none;
}
#top-head .inner {
	position: relative;
}
#top-head .logo {
	float: left;
}
#top-head .tel {
	display:none;
}
#global-nav ul {
	list-style: none;
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 16px;
}
#global-nav ul li {
	display:inline-block;/*floatでは　リンク要素の高さ揃えができない*/
	/*float: left;*/
	vertical-align:bottom;
	position: relative;
}
#global-nav ul li a {
	padding: 0 0 0 20px;
	font-size: 16px;
}
/*Btn Hover が効かないので文字色にて対応*/
#global-nav ul li a:hover {
	color: #999999;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

/*#top-headをoverflow: hidden;（右端の空白対策）しているのでここが機能しない*/
/* Btn Hover 
#global-nav ul li:after {
	position: absolute;
	content: "";
	display: block;
	width:100%;
	height: 3px;
	bottom: -20px;
	
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
#global-nav ul li:hover:after {
	background: #556655;
	bottom: -20px;
}
*/

/* Fixed */
#top-head.fixed {
	margin-top: 0;
	top: 0;
	position: fixed;
	height: 100px;
	background: rgba(255,255,255,.7);

	transition: top 0.65s ease-in;
	-webkit-transition: top 0.65s ease-in;
	-moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo {
}
#top-head.fixed #global-nav ul li a {
}
/* Fixed Btn Hover */
/*#top-headをoverflow: hidden;（右端の空白対策）しているのでここが機能しない
#top-head.fixed #global-nav ul li:after {
	bottom: -10px;
}
#top-head.fixed #global-nav ul li:hover:after {
	bottom: -20px;
}
*/



/* Transition */
/*
#top-head,
#top-head .logo,
#global-nav ul li,
#global-nav ul li a {
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
*/



/* Toggle Button */
#nav-toggle {
	display: none;
	position: absolute;
	right: 12px;
	top: 14px;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
}

#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #666;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 11px;
}
#nav-toggle span:nth-child(3) {
	top: 22px;
}




@media screen and (max-width: 1025px) {
/*****************
ヘッダー・ナビ
*****************/
	.inner {
		width: 100%;
		padding: 0px;
	}
	#global-nav ul li a {
		padding: 0 0 0 0.6rem;
		font-size:13px;
	}
	
		
	
}

@media screen and (max-width: 751px) {
/*****************
ヘッダー・ナビ
*****************/
	#top-head,
	.inner {
		width: 100%;
		padding: 0;
	}
	#top-head {
		top: 0;
		position: fixed;
		margin-top: 0;
		overflow: visible;/*右端の空白対策を解除して*/
	}
	/* Fixed reset */
	#top-head.fixed {
		padding-top: 0;
		background: transparent;
	}


	#mobile-head {
		width: 100%;
		height: 60px;
		z-index: 999;
		position: relative;
		/*
		background:url(../img/img9s.png) no-repeat 90px;
		background-size:120px;
		*/
	}
	#top-head.fixed .logo,
	#top-head .logo {
		position: absolute;
		left:5px;
		top: 15px;
	}
	#top-head .tel {
		display: block;
		position: absolute;
		left:110px;
		top:30px;
		width:120px;
	}
	#global-nav {
		position: absolute;
		/* 開いてないときは画面外に配置 */
		top: -500px;
		width: 100%;
		text-align: center;
		padding: 10px 0;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	#global-nav ul {
		list-style: none;
		position: static;
		right: 0;
		bottom: 0;
		/*font-size: 11px;*/
	}
	#global-nav ul li {
		display: block;/*floatでは　リンク要素の高さ揃えができないを解除して横並びを解除*/
		/*float: none;*/
		position: static;
		background: #333;
		border-bottom:1px solid #454545;
	}
	#global-nav ul li img{
		width:250px;
	}
	#global-nav ul li:after  {
		display: none;
	}
	#global-nav ul li:last-child{
		background: #ffffff;
	}
	#top-head #global-nav ul li a,
	#top-head.fixed #global-nav ul li a {
		width: 100%;
		display: block;
		color: #fff;
		padding: 1rem 0;
	}
	#nav-toggle {
		display: block;
	}
	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	/* #global-nav スライドアニメーション */
	.open #global-nav {
		/* #global-nav top + #mobile-head height */
		-moz-transform: translateY(556px);
		-webkit-transform: translateY(556px);
		transform: translateY(556px);
	}


}
