@charset "UTF-8";
/* CSS Document */


/*===================
全ページ共通
===================*/

html{
	background-color:#F7FCFC;
	border-top:15px solid #009C95;
	color:#4B4B4B;
}

a:hover{
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
}

/*下層ページ ヘッダー*/

div#pageHeader h1.savlogo{
	text-align:center;
	padding:30px;
}

div#SubMainVisual{
	background:url(../img/MainVisual_bg02.png) no-repeat;
	background-size:cover;
	border:1px solid #000;
}

/*グローバルナビ*/

#globalNav{
	width:100%;
	background-color:#009c95;
}

#globalNav ul{
		display:flex;
		justify-content:space-between;
		width:1000px;
		height:100px;
		margin-left:auto;
		margin-right:auto;
}

#globalNav ul li{
	width:18%;
	text-align:center;
	border-right:1px solid #fff;
	margin-top:10px;
	margin-bottom:10px;
}

#globalNav ul li:first-of-type{
	border-left:1px solid #fff;
}

#globalNav ul li a{
	display:inline-block;
	letter-spacing:2px;
	line-height:1.4em;
	margin-top:15px;
	font-weight:600;
}

#globalNav ul li:first-child a {
	margin-top:30px;
}

h2{
	font-size:2.25em;
	color:#009C95;
	font-weight:bold;
	text-align:center;
	margin-top:100px;
	background:url(../img/Scissors.png) no-repeat center;
	padding-bottom:100px;
}

/*フッター*/

#footer{
	background:#009C95;
}

#footerArea{
	width:1000px;
	margin:0 auto;
	margin-top:75px;
	position:relative;
}

#footerArea p.gotoTop{
	position:absolute;
	right:0;
	margin-top:-50px;
}

#footerArea div.title{
	display:flex;
	padding-top:50px;
	padding-bottom:50px;
}

#footerArea div.title p.address{
	color:#fff;
	font-size:0.8em;
	line-height:1.6em;
	padding-left:50px;
	padding-top:20px;
}

#footer div.navMenu ul{
	display:flex;
	justify-content:space-between;
}

#footer div.navMenu ul li{
	text-align:center;
	line-height:1.5em;
	border-bottom:1px solid #fff;
	margin-bottom:50px;
}

#footer p#copyright{
	background:#80CDCA;
	min-height:30px;
	color:#fff;
	font-size:0.6em;
	text-align:center;
	letter-spacing:3px;
	padding-top:10px;
}

/*メディアクエリ設定（※widhtが767px以下の場合にCSSを適用する）*/

@media screen and (max-width:768px){
	
	#globalNav{
	}
	
}