/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Raleway:400,300);
/*------ CSS リセット ここから ------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style:normal;
    font-weight: normal;
    font-size: 100%;
}
 
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
 
html{
    overflow-y: scroll;
}
 
blockquote, q {
    quotes: none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
 
input, textarea {
    margin: 0;
    padding: 0;
}
 
ol, ul{
    list-style:none;
}
 
table{
    border-collapse: collapse; 
    border-spacing:0;
}
 
caption, th{
    text-align: left;
}
 
a:focus {
    outline:none;
}
 
.clearfix:after {
    content: "."; 
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
 
.clearfix {
    min-height: 1px;
}
 
* html .clearfix {
    height: 1px;
    /*¥*//*/
    height: auto;
    overflow: hidden;
    /**/
}
 
.both{
    clear:both;
}
 
.inline_block {  
    display: inline-block;  
}
/*------ CSS リセット ここまで ------*/
/* デモなので簡易的なリセット */
* {
	margin: 0;
	padding: 0;
}
*::after,
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: #eee;
}
#home {
	margin:0;
	padding:0;
	height:0px;
}
article {
	min-height: 1000px;
	margin: 100px auto;
	text-align: center;
	line-height: 1.9;
}
article p {
	margin-bottom: 1em;
}
a {
	color: #0b8793;
}
a:link {
}
a:visited {
}
a:hover {
	opacity:0.8;
}
a:active {
}
#main-visual {
	background:url() no-repeat;
	background-size:cover;
	background-position:center top;
	/*
	background: #1d76a6;
	background: -webkit-linear-gradient(-45deg, #0062B8, #850047);
	background:    -moz-linear-gradient(-45deg, #0062B8, #850047);
	background:     -ms-linear-gradient(-45deg, #0062B8, #850047);
	background:      -o-linear-gradient(-45deg, #0062B8, #850047);
	background:         linear-gradient(-45deg, #0062B8, #850047);
	*/
	height: 700px;
	text-align:center;
}
img.mv {
	margin:300px auto;
	width:50%;
	height:auto;
}
footer {
	padding: 30px;
	text-align: center;
	background:#FFF;
}
footer a {
	color: #666;
	text-decoration: none;
}

/* ▲▲▲ここまではナビゲーションに関係ない設定▲▲▲ */

.inner {
	width: 980px;
	margin: 0 auto;
}
.inner:after {
	content: "";
	clear: both;
	display: block;
}

/* header */
#top-head {
	font-size: 14px;
	top: -100px;
	position: absolute;
	width: 100%;
	margin: 100px auto 0;
	padding: 10px 0 0;
	line-height: 1;
	z-index: 999;
}
#top-head a, #top-head {
	color: #fff;
	text-decoration: none;
}
#top-head .inner {
	position: relative;
}
#top-head .logo {
	float: left;
	font-size: 36px;
}
#top-head img.logo {
	height:42px;
}
#global-nav ul {
	list-style: none;
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 14px;
}
#global-nav ul li {
	float: left;
	position: relative;
}
#global-nav ul li a {
	padding: 0 30px;
}

/* 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: #fff;
	bottom: -30px;
}


/* Fixed */
#top-head.fixed {
	margin-top: 0;
	top: 0;
	position: fixed;
	padding-top: 10px;
	height: 55px;
	background: #fff;
	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 {
	font-size: 24px;
	color: #333;
}
#top-head.fixed img.logo {
	height:36px;
}
#top-head.fixed #global-nav ul li a {
	color: #333;
	padding: 0 20px;
}

/* Fixed Btn Hover */
#top-head.fixed #global-nav ul li:after {
	bottom: -10px;
}
#top-head.fixed #global-nav ul li:hover:after {
	background: #0062B8;
	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;
}

/*----------- Stacks Trust ----------*/
#equipment {
	padding-top:60px; max-width:1000px; margin:0 auto;
}
#company {
	padding-top:60px; max-width:1000px; margin:0 auto;
}
#contact {
	padding-top:60px; max-width:1000px; margin:0 auto;
}
h2 {
	background:#13007C;
	color:#FFF;
	font-family: 'Raleway', sans-serif;
	font-size:30px;
	text-align:left;
	padding-left:20px;
}
h3 {
	color:#13007C;
	font-size:26px;
	text-align:left;
	padding-left:10px;
	font-weight:bold;
}
#map_canvas {
	width:100%;
	height:650px;
}
p.company {
	padding:10px;
	text-align:left;
}
p.contactAdd {
	padding:100px;
}
img.contactAdd {
	width:50px;
	height:auto;
}

#Equipment {
	padding:0 10px;
	padding-bottom:50px;
}
.equipCategory {
	width:300px;
	margin:10px 10px;
    display: -moz-inline-box; /*for Firefox 2*/
    display: inline-block; /*for modern*/
    /display: inline; /*for ie5～7*/
    /zoom: 1; /*for ie5～7*/
}
/*.equipCategory {
	float:left;
	width:300px;
	background:#FFF;
	margin:10px 10px;
}*/
h3.equipment {
	font-size:150%;
	font-weight:bold;
	padding:5px;
}
table.equip {
	font-size:80%;
	margin-bottom:5px;
	text-align:left;
}
td.maker {
	padding:1px 0 ;
	min-width:130px;
	padding-left:5px;
	vertical-align:top;
}
td.model {
	min-width:130px;
	padding-left:5px;
	vertical-align:top;
}
td.num {
	min-width:20px;
	text-align:right;
	padding-left:5px;
	vertical-align:top;
}
td.remarks {
	padding-left:10px;
	font-size:70%;
	color:#333;
	vertical-align:top;
}


@media screen and (max-width: 980px) {
	article {
		padding: 0 30px;
	}
	.inner {
		width: 100%;
		padding: 0 20px;
	}
	#global-nav ul li a {
		padding: 0 20px;
	}
	#top-head.fixed #global-nav ul li a {
		padding: 0 15px;
	}
}

@media screen and (max-width: 640px) {
	#main-visual {
		height: 300px;
	}
	img.mv {
		margin:150px auto;
		width:80%;
		height:auto;
	}

	#top-head,
	.inner {
		width: 100%;
		padding: 0;
	}
	#top-head {
		top: 0;
		position: fixed;
		margin-top: 0;
	}
	/* Fixed reset */
	#top-head.fixed {
		padding-top: 0;
		background: transparent;
	}


	#mobile-head {
		background: #fff;
		width: 100%;
		height: 56px;
		z-index: 999;
		position: relative;
	}
	#top-head.fixed .logo,
	#top-head .logo {
		position: absolute;
		left: 13px;
		top: 13px;
		color: #333;
		font-size: 26px;
	}
	#top-head img.logo {
		margin-top:-20px;
	}

	#global-nav {
		position: absolute;
		/* 開いてないときは画面外に配置 */
		top: -500px;
		background: #333;
		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: 18px;
	}
	#global-nav ul li {
		float: none;
		position: static;
		height:56px;
	}
	#global-nav ul li:after  {
		display: none;
	}
	#top-head #global-nav ul li a,
	#top-head.fixed #global-nav ul li a {
		width: 100%;
		display: block;
		color: #fff;
		padding: 18px 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);
	}
	#equipment {
		padding-top:300px; max-width:1000px; margin:0 auto;
	}
	#company {
		padding-top:300px; max-width:1000px; margin:0 auto;
	}
	#map_canvas {
		width:100%; height:250px;
	}
	#contact {
		padding-top:300px; max-width:1000px; margin:0 auto;
	}

}

