@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;
}

.hd-content {
	display: table;
	table-layout: fixed;
	margin: 10px 0 5px;
}

.hd-content .logo {
	display: table-cell;
	padding-top: 3px;
	padding-bottom: 3px;
	vertical-align: middle;
}

	.contactInfo {
		display: table-cell;
		padding-left: 30px;
		vertical-align: middle;
	}
	.contactInfo .tel-fax {
		display: inline-block;
		margin: 0 6px 0 0;
		vertical-align: top;
	}
	.contactInfo .header-btn-mail {
		display: inline-block;
		position: relative;
		line-height: 46px;
		margin-top: 2px;
		padding: 0 15px;
		border-radius: 4px;
		background: #3b4168;
		box-shadow: 0 4px 0 #02040c;
		letter-spacing: normal;
		color: #fff;
		font-size: 18px;
		text-decoration: none;
	}
	.contactInfo .header-btn-mail:link,
	.contactInfo .header-btn-mail:visited {}
	.contactInfo .header-btn-mail:hover {
		background: #de003a;
	}
	.contactInfo .header-btn-mail:active {
		margin-top: 10px;
		background: #de003a;
		-webkit-box-shadow: none;
		   -moz-box-shadow: none;
		   		box-shadow: none;
	}


/* グローバルナビ */
.global-nav {
	margin-top: 8px;
}
.global-nav ul {
	display: table;
	table-layout: fixed;
	}
	.global-nav li {
		display: table-cell;
		padding-left: 20px;
		vertical-align: middle;
	}
	.global-nav li:first-child {
		padding-left: 0;
	}

.global-nav a {
	display: block;
	position: relative;
	padding-left: 16px;
	color: #454545;
	font-size: 17px;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: -.05em;
}
.global-nav a:hover,
.global-nav a.is-active {
	color: #e20037;
}
.global-nav a:before {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #e20037;
	transform: translateY(-50%) translateX(0);
	content: '';
}




		

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

#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: 730px;
		margin: 0 auto;
		padding-left: 210px;
	}
	.footer-wrap .union .inner:before {
		position: absolute;
		top: -70px;
		left: 40px;
		background: url(../img/shared/spacer.png);
		content: url(../img/shared/footer-car.png);
	}

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

	
