@charset "utf-8";
/* ================================================ CSS Information
 File Name:      layout.css
 Author:         Akira Honda
 Last updated:   2014/12/4
 Style Info:    レイアウト定義
 Notes:          
================================================================ */

/* Links */
a:link,
a:visited   {
	color: #f39500;
	text-decoration: underline;
}
a:hover,
a:active 	{
	color: #e10047;
	text-decoration: none;
}


/* ---------------------------------------------------

 レイアウト定義

--------------------------------------------------- */
body {
	min-width: 940px;
	margin: 0;
	color: #4d4d4d;
	font: normal normal 87.5%/1 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: 100%; /* iPhone */
}

.spnav {
	min-height: 60px;
	padding: 10px;
	border-bottom: 1px solid #c8c5bf;
	background: #fafaf5;
	text-align: center;
	}
	.spnav a {
		display: inline-block;
		position: relative;
		height: 44px;
		padding: 0 20px;
		line-height: 44px;
		border-radius: 4px;
		background: #3b4168;
		-webkit-box-shadow: 0 4px 0 #02040c;
		   -moz-box-shadow: 0 4px 0 #02040c;
		   		box-shadow: 0 4px 0 #02040c;
		color: #fff;
		font-size: 16px;
		text-decoration: none;
	}

/* ヘッダー
   ------------------------------------------------ */

#siteHeader {
	position: relative;
	width: 100%;
	height: 110px;
	background: #fff;
}
#siteHeader:after {
	display: block;
	position: absolute;
	z-index: 10;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 5px;
	background: url(../img/shared/header-boxshadow.png) repeat-x 0 0;
	content: '';
}
.header-wrap {
	width: 940px;
	margin: 0 auto;
	overflow: hidden;
}

.logo {
	position: relative;
	float: left;
	width: 320px;
	height: 68px;
	padding: 79px 0 0 72px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	   		box-sizing: border-box;
	}
	.logo a {
		display: block;
		position: absolute;
		top: 28px;
		left: 0;
		z-index: 1;
		}
		.logo a img       { background: url(../img/shared/spacer.png); }
		.logo a:hover img { opacity: .5; }
	
	.logo .txt {
		display: inline-block;
		position: relative;
		z-index: 5;
		color: #454545;
		font-size: 12px;
		text-decoration: none;
	}

.header-info {
	float: right;
	width: 620px;
	padding: 7px 0 0;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	   		box-sizing: border-box;
	}
	.header-info .contacts {
		height: 73px;
		letter-spacing: -.4em;
	}
	.header-info .contacts .tel-fax {
		display: inline-block;
		margin: 0 6px 0 0;
		vertical-align: top;
		letter-spacing: normal;
	}
	.header-info .contacts .header-btn-mail {
		display: inline-block;
		position: relative;
		width: 120px;
		height: 44px;
		margin-top: 6px;
		border-radius: 4px;
		background: #3b4168;
		-webkit-box-shadow: 0 4px 0 #02040c;
		   -moz-box-shadow: 0 4px 0 #02040c;
		   		box-shadow: 0 4px 0 #02040c;
		letter-spacing: normal;
	}
	.header-info .contacts .header-btn-mail:link,
	.header-info .contacts .header-btn-mail:visited {}
	.header-info .contacts .header-btn-mail:hover {
		background: #de003a;
	}
	.header-info .contacts .header-btn-mail:active {
		margin-top: 10px;
		background: #de003a;
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
		   		box-shadow: none;
	}


/* グローバルナビ */
.global-nav ul {
	width: 620px;
	height: 16px;
	letter-spacing: -.4em;
	}
	.global-nav li {
		display: inline-block;
		margin-left: 15px;
	}
	.global-nav li:first-child {
		margin-left: 0;
	}




		

/* サイトボディ
   ------------------------------------------------ */

#siteBody {
	position: relative;
	line-height: 1.8;
	margin: 0 0 20px;
	overflow: hidden;
	}



/* フッター
   ------------------------------------------------ */

#siteFooter {
	clear: both;
	padding: 60px 0 0;
}

.footer-wrap .union {
	width: 100%;
	height: 30px;
	margin: 0;
	line-height: 30px;
	background: #de003a;
	color: #fff;
	}
	.footer-wrap .union .inner {
		display: block;
		position: relative;
		width: 930px;
		margin: 0 auto;
		padding: 0 15px;
	}
	.footer-wrap .union .inner:before {
		position: absolute;
		top: -70px;
		left: 40px;
		background: url(../img/shared/spacer.png);
		content: '';
	}

/* コピーライト */
#copyright {
	display: block;
	width: 930px;
	margin: 10px auto 20px;
	padding: 0 15px;
	font-size: 12px;
}

	
